a05cabac45d5da5426c3ba7ace0ac834289d362d,src/org/pentaho/di/job/entries/movefiles/JobEntryMoveFiles.java,JobEntryMoveFiles,MoveFile,#String#FileObject#FileObject#FileObject#LogWriter#Job#Result#,824
Before Change
try{
if(!destinationfilename.exists())
{
sourcefilename.moveTo(destinationfilename);
if(log.isDetailed()) log.logDetailed(toString(), Messages.getString("JobMoveFiles.Log.FileMoved",sourcefilename.getName().toString(),destinationfilename.getName().toString()));
// add filename to result filename
After Change
try{
if(!destinationfilename.exists())
{
if(!simulate) sourcefilename.moveTo(destinationfilename);
if(log.isDetailed()) log.logDetailed(toString(), Messages.getString("JobMoveFiles.Log.FileMoved",sourcefilename.getName().toString(),destinationfilename.getName().toString()));
// add filename to result filename